home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -in_the_mag- / javascript / part5 / scripts / random150.js < prev    next >
Text File  |  2000-02-07  |  955b  |  48 lines

  1. <HTML>
  2.  
  3. <HEAD>
  4.  
  5. <TITLE>Random Number Generator</TITLE>
  6.  
  7. <script language="JavaScript">
  8. <!--
  9.  
  10. function RandomNumber(upper_limit) 
  11.     {
  12.     // This function returns a random number between 0 and upper_limit,
  13.     // inclusive, where upper_limit is a parameter passed to the function.
  14.     // Alternatively, you could easily modify this function to
  15.     // assign upper_limit within the function itself.
  16.  
  17.     return Math.round(upper_limit * Math.random());
  18.     }
  19.  
  20. //-->
  21. </script>
  22.  
  23. </HEAD>
  24.  
  25. <BODY>
  26.  
  27. <script language="JavaScript">
  28. <!--
  29.  
  30. // The following code demonstrates the use of the RandomNumber() function
  31. // defined above in the HEAD section.
  32.  
  33. var upper_limit = 50;
  34.  
  35. document.write('Here is a random number between 0 and ' + upper_limit + ':<br><br>');
  36.  
  37. document.write(RandomNumber(upper_limit) + '<br><br>');
  38.  
  39. document.write('Press your browser\'s Reload or Refresh button to see another random number between 0 and ' + upper_limit + '.');
  40.  
  41. //-->
  42. </script>
  43.  
  44.  
  45. </BODY>
  46. </HTML>
  47.  
  48.